home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 80 / CD Actual 80 Julio-Agosto 2003.iso / Linux / LinuxGazette / lg / issue27 / xterm < prev    next >
Encoding:
Text File  |  2002-08-14  |  901 b   |  32 lines

  1. #! /bin/sh
  2. # skeleton    example file to build /etc/init.d/ scripts.
  3. #        This file should be used to construct scripts for /etc/init.d.
  4. #
  5. #        Written by Miquel van Smoorenburg <miquels@cistron.nl>.
  6. #        Modified for Debian GNU/Linux
  7. #        by Ian Murdock <imurdock@gnu.ai.mit.edu>.
  8. #
  9. # Version:    @(#)skeleton  1.6  11-Nov-1996  miquels@cistron.nl
  10. #
  11. set -e
  12.  
  13. case "$1" in
  14.   start)
  15.     start-stop-daemon --start --verbose --pidfile /var/run/xterm.pid --exec /usr/bin/X11/X -- -quiet -indirect weber &
  16.     ;;
  17.   stop)
  18.     start-stop-daemon --stop --verbose --pidfile /var/run/xterm.pid --exec /usr/bin/X11/X
  19.     ;;
  20.   reload)
  21.     # echo "Reloading $NAME configuration files"
  22.     # start-stop-daemon --stop --signal 1 --quiet --pidfile /var/run/$NAME.pid --exec $DAEMON
  23.     ;;
  24.   *)
  25.     # echo "Usage: /etc/init.d/$NAME {start|stop|reload}"
  26.     echo "Usage: /etc/init.d/xterm {start|stop}"
  27.     exit 1
  28.     ;;
  29. esac
  30.  
  31. exit 0
  32.